home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / csource2 / sclib_1 / 1_2 / v7n2046b.txt < prev    next >
Encoding:
Text File  |  1995-11-01  |  292 b   |  15 lines

  1. /* interface to vmalloc module */
  2. #include <malloc.h>
  3.  
  4. char *vmalloc();
  5. void vfree();
  6. void vverify();
  7. char *vrealloc();
  8. char *vcalloc();
  9. void vdump();
  10.  
  11. #define malloc(a) vmalloc(a)
  12. #define free(a) vfree(a)
  13. #define realloc(a, b) vrealloc(a, b)
  14. #define calloc(a, b) vcalloc(a, b)
  15.